New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@hixme-ui/theme

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hixme-ui/theme

hixme-ui theme

  • 1.20.7
  • npm
  • Socket score

Version published
Weekly downloads
33
increased by50%
Maintainers
2
Weekly downloads
 
Created

Theme

npm i --save @hixme-ui/theme

Theme

HUI theme colors and defaults

import theme from '@hixme-ui/theme'

const primary = theme.colors.primary

ThemeProvider

HUI theme provider, which is just an implementation of styled-components ThemeProvider with the HUI theme as the default

import { ThemeProvider } from '@hixme-ui/theme'

const App = ({ children }) => (
  <ThemeProvider>
    {children}
  </ThemeProvider>
)

withGlobal prop

The HUI was built with some global settings, including the normalize CSS. These global styles are not set by default and are enabled by adding the withGlobal property on the ThemeProvider.


const App = ({ children }) => (
  <ThemeProvider withGlobal>
    {children}
  </ThemeProvider>
)

FAQs

Package last updated on 15 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts